home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / convert / main.dfm / main.txt
Encoding:
Text File  |  1995-12-22  |  2.3 KB  |  121 lines

  1. object Form1: TForm1
  2.   Left = 283
  3.   Top = 134
  4.   Width = 400
  5.   Height = 222
  6.   BorderIcons = [biSystemMenu, biMinimize]
  7.   Caption = 'Value Converter'
  8.   Font.Color = clWindowText
  9.   Font.Height = -16
  10.   Font.Name = 'System'
  11.   Font.Style = []
  12.   Menu = MainMenu1
  13.   PixelsPerInch = 120
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   TextHeight = 16
  17.   object Label1: TLabel
  18.     Left = 8
  19.     Top = 32
  20.     Width = 36
  21.     Height = 16
  22.     Caption = 'Input:'
  23.   end
  24.   object Label2: TLabel
  25.     Left = 8
  26.     Top = 152
  27.     Width = 46
  28.     Height = 16
  29.     Caption = 'Output:'
  30.   end
  31.   object Edit1: TEdit
  32.     Left = 64
  33.     Top = 24
  34.     Width = 65
  35.     Height = 24
  36.     TabOrder = 0
  37.   end
  38.   object Edit2: TEdit
  39.     Left = 64
  40.     Top = 144
  41.     Width = 65
  42.     Height = 24
  43.     TabOrder = 1
  44.   end
  45.   object RadioGroup1: TRadioGroup
  46.     Left = 144
  47.     Top = 16
  48.     Width = 145
  49.     Height = 153
  50.     Hint = 'Select format to convert to'
  51.     Caption = 'Conversion'
  52.     Items.Strings = (
  53.       '&Celsius'
  54.       '&Fahrenheit'
  55.       '&Miles'
  56.       '&Kilometers')
  57.     ParentShowHint = False
  58.     ShowHint = True
  59.     TabOrder = 2
  60.     OnClick = RadioGroup1Click
  61.   end
  62.   object BitBtn1: TBitBtn
  63.     Left = 8
  64.     Top = 72
  65.     Width = 121
  66.     Height = 41
  67.     Caption = '&Execute'
  68.     TabOrder = 3
  69.     OnClick = BitBtn1Click
  70.     Kind = bkOK
  71.   end
  72.   object BitBtn2: TBitBtn
  73.     Left = 296
  74.     Top = 136
  75.     Width = 89
  76.     Height = 33
  77.     Caption = 'E&xit'
  78.     TabOrder = 4
  79.     OnClick = BitBtn2Click
  80.     Kind = bkClose
  81.   end
  82.   object ValueConverter1: TValueConverter
  83.     Kind = FahrenConvert
  84.     Left = 360
  85.     Top = 8
  86.   end
  87.   object MainMenu1: TMainMenu
  88.     Left = 360
  89.     Top = 40
  90.     object File1: TMenuItem
  91.       Caption = '&File'
  92.       object Execute1: TMenuItem
  93.         Caption = '&Execute'
  94.         OnClick = BitBtn1Click
  95.         ShortCutText = 'Ctrl+E'
  96.       end
  97.       object N1: TMenuItem
  98.         Caption = '-'
  99.       end
  100.       object Exit1: TMenuItem
  101.         Caption = 'E&xit'
  102.         OnClick = BitBtn2Click
  103.       end
  104.     end
  105.     object Help1: TMenuItem
  106.       Caption = '&Help'
  107.       object Help2: TMenuItem
  108.         Caption = '&Help'
  109.         OnClick = Help2Click
  110.       end
  111.       object N2: TMenuItem
  112.         Caption = '-'
  113.       end
  114.       object About1: TMenuItem
  115.         Caption = '&About...'
  116.         OnClick = About1Click
  117.       end
  118.     end
  119.   end
  120. end
  121.